ImageGear .NET v25.2 - Updated
ImageGear.Windows.Controls Assembly / ImageGear.Core Namespace / ImGearReadOnlyDictionary<TKey,TValue> Class / Add Method / Add(KeyValuePair<TKey,TValue>) Method
The object to add to the dictionary.




In This Topic
    Add(KeyValuePair<TKey,TValue>) Method
    In This Topic
    This method is not supported by the ImGearReadOnlyDictionary.
    Syntax
    'Declaration
     
    Public Overloads Sub Add( _
       ByVal item As KeyValuePair(Of TKey,TValue) _
    ) 
    'Usage
     
    Dim instance As ImGearReadOnlyDictionary(Of TKey,TValue)
    Dim item As KeyValuePair(Of TKey,TValue)
     
    instance.Add(item)
    public void Add( 
       KeyValuePair<TKey,TValue> item
    )
    public: void Add( 
       KeyValuePair<TKey*,TValue*> item
    ) 
    public:
    void Add( 
       KeyValuePair<TKey^,TValue^> item
    ) 

    Parameters

    item
    The object to add to the dictionary.
    See Also